home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 2: CDPD 1
/
Almathera Ten on Ten - Disc 2: CDPD 1.iso
/
pd
/
351-375
/
359
/
dice
/
dice.lzh
/
lib
/
string
/
strdup.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-04-01
|
198b
|
21 lines
/*
* STRDUP.C
*/
#include <string.h>
#include <stdlib.h>
char *
strdup(s)
const char *s;
{
int len = strlen(s);
char *d;
if (d = malloc(len + 1))
strcpy(d, s);
return(d);
}